home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 1
/
Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso
/
FILES
/
HYP
/
C-D
/
DeveloperStax.cpt
/
Developer Stack 1.1
/
card_18107.txt
< prev
next >
Wrap
Text File
|
1989-02-26
|
1KB
|
58 lines
-- card: 18107 from stack: in.1
-- bmap block id: 0
-- flags: 0000
-- background id: 16981
-- name: Control Structures
-- part contents for background part 11
----- text -----
1
-- part contents for background part 1
----- text -----
Control Structures
-- part contents for background part 12
----- text -----
•••••••••••••••••••••••••••••••••••••
repeat [ for ] <number> [ times ]
statementList
end repeat
repeat until <condition>
statementList
end repeat
repeat while <condition>
statementList
end repeat
repeat [forever]
statementList
end repeat
repeat with <variable> = <start> to <finish>
statementList
end repeat
repeat with <variable> = <start> downto <finish>
statementList
end repeat
•••••••••••••••••••••••••••••••••••••••
if <condition> then <statement> [ else <statement> ]
if <condition>
then <statement>
[ else <statement> ]
if <condition> then
statementList
[ else
statementList]
end if
•••••••••••••••••••••••••••••••••••••••